home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 437 b | 31 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class LINK2_LIST_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- make is
- local
- link2_list: LINK2_LIST[INTEGER];
- i: INTEGER;
- do
- from
- !!link2_list.make;
- i := count;
- until
- i = 0
- loop
- link2_list.add_first(0);
- i := i - 1;
- end;
- bench(link2_list);
- end;
-
- end
-
-